home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / 2dapnt15.arc / 2DAPOINT.CTL < prev    next >
Text File  |  1991-11-26  |  11KB  |  256 lines

  1. ; 2DAPoint v1.50 (11/91)       By Ron Pritchett of FidoNet Node 376/74
  2. ;
  3. ; Copyright (c) 1991, Distribute Freely, No Modifications to Software
  4.  
  5. ; FidoNet Address
  6. ; Address Zone:Net/Node.Point
  7. Address 1:376/74.0
  8.  
  9. ; Save passthru file attaches or not
  10. ; (this refers to the files themselves, not the message they're attached to)
  11. ; FileFwd Save
  12. ; FileFwd Kill (Default)
  13. FileFwd Kill
  14.  
  15. ; Save forwarded messages or not
  16. ; Forward Save (Default)
  17. ; Forward Kill
  18. Forward Save
  19.  
  20. ; Inbound Mail Path
  21. InBound C:\Binkley\NetFile
  22.  
  23. ; Outbound Mail Path
  24. ;  - "Outbound C:\binkley\Outbound.001" is perfectly legal. Any mail for YOUR
  25. ;     zone will put there. Any mail for Zone 2 would go into Outbound.002.
  26. ;  - The Eggnet (Zone 100) outbound dir be Outbound.064 because 064 is hex
  27. ;    for 100. If C:\Binkley\Outbound.064 didn't exist, and was needed,
  28. ;    it'd be created.
  29. ;
  30. OutBound C:\Binkley\OutBound
  31.  
  32. ; Log filename
  33. ; 2DaPoint.Log (in current dir) is the default
  34. Log 2DaPoint.Log
  35.  
  36. ; Matrix/NetMail Path
  37. Mail C:\Mail\Matrix
  38.  
  39. ; Point ReDirection Mode
  40. ; Mode Net
  41. ; Mode Node (Default)
  42. ;
  43. ; Mode Net -  Any mail outbound to a point in your network will be saved to
  44. ;             it's full 4D address & placed into the appropriate .PNT dir.
  45. ;             For example Mail to 1:376/16.1 would be placed into
  46. ;             C:\Binkley\Outbound\01780010.PNT as 00000001.?UT.
  47. ;                                 \--/\--/        \--/
  48. ;                                 376   16        Always 4 0's
  49. ; Mode Node - Any mail outbound to a point for your node ONLY will be saved
  50. ;             in the corresponding .PNT directory. Otherwise, the 4D address
  51. ;             would be embedded into the message but the message would be
  52. ;             sent to the point's host system.
  53. ;             In the above example, the msg would be placed into
  54. ;             C:\Binkley\Outbound as 01780010.?ut
  55. Mode Node
  56.  
  57.  
  58. ; Password File
  59. ;     Default is null. If the file you specify doesn't exists, no passwords
  60. ;     will be used. You *MAY* set PWFile to 2DAPOINT.CTL if you wish.
  61. PWFile Squish.cfg
  62.  
  63. ;
  64. ; Message attributes - 2 bytes
  65. ;
  66. ;
  67. ;                              Hold─┐     ┌─Orphan (Unknown Destination Node)
  68. ;                  File Request─┐   │     │   ┌─File Attach
  69. ;         Is Return Receipt─┐   │   │     │   │   ┌─Read
  70. ;        Update Request─┐   │   │   │     │   │   │   ┌─Private
  71. ;                     ╔═════════════════════════════════╗
  72. ;                     ║ F E D C B A 9 8 7 6 5 4 3 2 1 0 ║
  73. ;                     ╚═════════════════════════════════╝
  74. ;     Audit Trail Request─┘   │   │   │ │   │   │   └─Crash
  75. ;           Receipt Requested─┘   │   │ │   │   └─Sent
  76. ;                        Reserved─┘   │ │   └─Forward
  77. ;                 Local (vs. FidoNet)─┘ └─KillSent (Kill after Sent)
  78. ;
  79. ; Or for the programmers out there:
  80. ;
  81. ; Value     Description                     Bit Mask
  82. ; -----     ---------------------- -- -------------------
  83. ; $0001     private message         * 0000 0000 0000 0001
  84. ; $0002     crash mail              * 0000 0000 0000 0010
  85. ; $0004     read by addressee       * 0000 0000 0000 0100
  86. ; $0008     sent                      0000 0000 0000 1000
  87. ; $0010     file attached to msg    * 0000 0000 0001 0000
  88. ; $0020     forward                   0000 0000 0010 0000
  89. ; $0040     unknown dest node         0000 0000 0100 0000
  90. ; $0080     kill after sent         * 0000 0000 1000 0000
  91. ; $0100     FidoNet vs. local         0000 0001 0000 0000
  92. ; $0200     Hold, don't send        * 0000 0010 0000 0000
  93. ; $0400     <reserved>             X? 0000 0100 0000 0000
  94. ; $0800     file request            * 0000 1000 0000 0000
  95. ; $1000     receipt requested      X* 0001 0000 0000 0000
  96. ; $2000     is a return receipt    X* 0010 0000 0000 0000
  97. ; $4000     audit trail requested  X* 0100 0000 0000 0000
  98. ; $8000     update request         X* 1000 0000 0000 0000
  99. ;
  100. ;                                   * = preserved by the network
  101. ;                                   ? = stripped by the (FTSC spec) but
  102. ;                                       preserved by seadog<tm>
  103. ;                                   X = not used by Opus
  104. ;
  105. ; Reminder: Once it's been determined that a message needs sent, then
  106. ;           the "SetBit" & "StripBit" bitmasks will be applied.
  107. ;
  108. ; Flexibility: The bitmask is highly flexible. It could be entered in
  109. ;              1 to 16 "words". Leading zeros will be assumed.
  110. ;
  111. ; StripBit 0 0 0 0 1
  112. ; StripBit 1               All 3 of these are equal!
  113. ; StripBit 000 1
  114. ;
  115. ; WARNING!!! DANGER, Will Robinson, DANGER!!!!
  116. ; It's recommended that you do NOT mess with any bits other than Private,
  117. ; Crash and/or Hold. You are completely on your own and you're playing
  118. ; with FIRE!
  119. ;
  120. ; Examples:
  121. ; SetBit   0000 0010 0000 0001        <- Make all mail private & hold
  122. ; StripBit 0000 0000 0000 0010        <- Strip all Crash bits
  123. SetBit   0000 0000 0000 0000     ; Nothing Set
  124. StripBit 0000 0000 0000 0000     ; Nothing Stripped
  125.  
  126. ; ZoneGating
  127. ; ZoneGate On
  128. ; ZoneGate Off (Default)
  129. ;
  130. ; If ZoneGate is turned on, any inter-zone msgs will be routed thru a
  131. ; preselected node that acts as a gateway to another zone. Zonegates are
  132. ; setup with the following address scheme:
  133. ;
  134. ; Origin_Zone:Origin_Zone/Destination_Zone.0
  135. ;
  136. ;  Zone gate for Zone 1 to 2 would be 1:1/2.0
  137. ;                          3 would be 1:1/3.0
  138. ;  Zone gate for Zone 2 to 1 would be 2:2/1.0
  139. ;                          3 would be 2:2/3.0
  140. ZoneGate On
  141.  
  142. ; Name Service! New for Version 1.10. A Message will be directed to address
  143. ; listed. NOTE: Name recognition takes precedent over whatever the destination
  144. ; address is, so have your control file setup correctly. the way it works is
  145. ; if a message is addressed to your Zone:Net then the address in the control
  146. ; file is used.
  147. ;
  148. ; A destination address may be of the following forms
  149. ;
  150. ;      Possible Formats                 Assumptions
  151. ;   ---------------------         --------------------------------------------
  152. ;   <Zone:Net/Node.Point>         - full address, no mistakes here!
  153. ;   <Zone:Net/Node>               - Point = 0
  154. ;        <Net/Node>               - Zone = Yours, Point = 0
  155. ;        <Net/Node.Point>         - Zone = Yours,
  156. ;            <Node.Point>         - Zone & Net = Yours
  157. ;            <Node>               - Zone & Net = Yours, Point = 0
  158. ;                 .<Point>        - Zone, Net & Node = Yours
  159.  
  160. Names
  161.   Robert Wilhite                           8
  162.   Shay Walters                             12
  163.   Travis Watford                           14.21
  164.   John Brown        ^ John G. Brown Jr.    14.23
  165.   David Wilhite                            14.98
  166.   Ray Radlein                              16.3
  167.   Arnie Elkins                             16.4
  168.   Kevin Parris                             16.5
  169.   David Dorman                             16.39
  170.   John Mood                                16.110
  171.   Mike Faircloth                           16.155
  172.   Greg Prevost                             16.197
  173.   Forrest Bennett                          16
  174.   Bill Talyor                              24
  175.   William Bertholf                         26
  176.   Bob Main                                 38.14
  177.   Allen Hendrix                            38.107
  178.   Ed Wootin         ^ Edwin Wooten         38.112
  179.   Merlin            ^ Larry Von Wessinger  38
  180.   Face              ^ Paul Beverly         38.251
  181.   Sir Kay           ^ Paul Beverly         38.251
  182.   Dennis Rogers                            40
  183.   Paul Deemer                              42
  184.   Dave Rose                                44
  185.   Steve Kopec       ^ Steven Kopec         46
  186.   Mhoram            ^ Steven Kopec         46
  187.   Jules Edwards     ^ Julius Edwards       50
  188.   David Dean                               56
  189.   Jim Harvey                               60
  190.   Rob Ehlers                               64
  191.   John Nettles                             66
  192.   Gale Wilkinson    ^ Gale D. Wilkinson    70
  193.   Roy Myers                                70.101
  194.   Lee Justice                              70.102
  195.   John Van          ^ John Van Buskirk     72
  196.   JVB               ^ John Van Buskirk     72
  197.  
  198.   Reese             ^ Ben Stuckey          72.115
  199.   ; any message entered to "Reese" or "Ben Stuckey" whose destination
  200.   ; address is 1:376/xx.yy would get sent to "Ben Stuckey" @ 1:376/72.115
  201.  
  202.   Lewis Etheridge                          .1
  203.   Jim McNamee                              .7
  204.   Steve Robertson                          .22
  205.   Andy Hendin       ^ Andrew Hendin        .26
  206.   Warren Kohn                              .31
  207.   Phillip Jones                            .40
  208.   Jim Pine                                 .109
  209.   Kaptian Keller    ^ Bryan Keller         76
  210.   Judge Dredd       ^ Bryan Keller         76
  211.   Doctor Who        ^ Bryan Keller         76
  212.   Ronnue            ^ Ron Pritchett        Hold
  213.   Sysop             ^ Ron Pritchett        Hold
  214.   System Operator   ^ Ron Pritchett        Hold
  215.  
  216.   John Gemmill                             3624/19
  217.   Ben Mann                                 151/2
  218.   Amnon             ^ Amnon Nissan         151/100
  219.   SDS               ^ Bill Weinel          151/121
  220.   JoHo              ^ Joaquim Homrighausen 2:270/17
  221.   ; any message entered to "Joho" or "Joaquim Homrighausen" whose destination
  222.   ; address is 1:376/xx.yy would get sent to "Joaquim Homrighausen" @ 2:270/17.0
  223. End
  224.  
  225. ; Mis-Addressing Notification
  226. ; Notify None   (Default)
  227. ; Notify OurNet
  228. ; Notify All
  229. ;
  230. ; If a msg comes in mis-addressed, then a FYI will be sent back to the
  231. ; person telling them where they can contact the addressee in the future.
  232. ; This feature is dependent on the name servicing.
  233. ;
  234. ; Notify None   - no FYI messages are sent
  235. ;
  236. ; Notify OurNet - FYI's will be sent within your network
  237. ;
  238. ; Notify All    - FYI's will be sent to ANY system
  239. ;
  240. ; Example:
  241. ;     John Point is 1:376/74.101 & his name is in the name service
  242. ;     lookup table. Joe Nobody @ 1:376/2.0 sends a message to
  243. ;     "Joe Nobody @ 1:376/74.125" Once the message arrives, the
  244. ;     proper address of 1:376/74.101 would be substituted & John
  245. ;     Point would get his mail. Also Joe Nobody @ 1:376/2.0 would get
  246. ;     the following message:
  247. ;
  248. ;  Dear Joe Nobody,
  249. ;
  250. ;       In a Netmail message to John Point on Date/Time,
  251. ;       you improperly addressed your message to 1:376/74.125.
  252. ;       John Point can be reached at 1:376/74.101.
  253. ;       Please make a note of this for future reference.
  254. ;
  255. Notify OurNet
  256.